Nevron .NET Vision
Nevron.GraphicsCore Namespace / NGeometry2D Class / Scale Method / Scale(NPointD[],Int32,Int32,Double,Double,NPoint) Method
array of points
the index of the first point
the count of points to perform operation upon
X scale
Y scale
pin point for scaling


In This Topic
    Scale(NPointD[],Int32,Int32,Double,Double,NPoint) Method
    In This Topic
    Scales a range of points from the specified array around the specified pin
    Syntax
    'Declaration
     
    
    Public Overloads Shared Sub Scale( _
       ByVal points() As NPointD, _
       ByVal start As System.Integer, _
       ByVal count As System.Integer, _
       ByVal scaleX As System.Double, _
       ByVal scaleY As System.Double, _
       ByVal pin As NPoint _
    ) 
    'Usage
     
    
    Dim points() As NPointD
    Dim start As System.Integer
    Dim count As System.Integer
    Dim scaleX As System.Double
    Dim scaleY As System.Double
    Dim pin As NPoint
     
    NGeometry2D.Scale(points, start, count, scaleX, scaleY, pin)
    public static void Scale( 
       NPointD[] points,
       System.int start,
       System.int count,
       System.double scaleX,
       System.double scaleY,
       NPoint pin
    )

    Parameters

    points
    array of points
    start
    the index of the first point
    count
    the count of points to perform operation upon
    scaleX
    X scale
    scaleY
    Y scale
    pin
    pin point for scaling
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also